home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / alsa-utils.postrm < prev    next >
Text File  |  2009-10-20  |  571b  |  25 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6. purge)
  7.     # Remove legacy config and state files
  8.     rm -f /etc/alsa/0.9/asound.conf /etc/asound.state
  9.     # Remove configuration file generated by alsaconf
  10.     rm -f /etc/modprobe.d/sound /etc/modutils/sound \
  11.     /etc/modprobe.d/sound.conf
  12.     # Remove state file generated by alsactl
  13.     rm -f /var/lib/alsa/asound.state
  14.     # Remove udev configfile
  15.     rm -f /lib/udev/rules.d/80-alsa.rules
  16.     ;;
  17. esac
  18.  
  19. # Automatically added by dh_installinit
  20. if [ "$1" = "purge" ] ; then
  21.     update-rc.d alsa-utils remove >/dev/null || exit $?
  22. fi
  23. # End automatically added section
  24.  
  25.